[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Enumerate all the keys in the dictionary. This method must be overridden by a derived
class.
Namespace: Wintellect.PowerCollections
Assembly:
PowerCollections (in PowerCollections.dll)
Syntax
Visual Basic (Declaration) |
---|
Protected MustOverride Function EnumerateKeys As IEnumerator(Of TKey) |
Visual C++ |
---|
protected:
virtual IEnumerator<TKey>^ EnumerateKeys () abstract |
Return Value
An IEnumerator<TKey> that enumerates all of the keys in the collection that
have at least one value associated with them.
See Also